feat(action): add GitHub PR creation capability - #3
Merged
Conversation
- Add inputs for github_token, create_pr, pr_title, pr_body, pr_base_branch, branch_prefix - Add outputs for pr_created, pr_url, branch_name - Create branch-setup.sh script for creating feature branches - Create create-pr.sh script for committing and creating PRs via gh CLI - Add test workflow for PR creation functionality
JingLi1998
approved these changes
Dec 12, 2025
timesler
reviewed
Dec 12, 2025
|
|
||
| - name: Run Rovo Dev with PR Creation | ||
| id: rovo-dev | ||
| uses: ./ |
Collaborator
There was a problem hiding this comment.
Just to understand this - for using this action from another repo, would a user just need to make sure that uses: points to this repo?
Contributor
Author
There was a problem hiding this comment.
the main README file has a quick example. it's something like this
- name: Run Rovo Dev
uses: atlassian-labs/rovo-dev-action@v1
with:
prompt: "Read README.md and update the Confluence page at https://hello.atlassian.net/wiki/spaces/ROVODEV/pages/000000 to stay consistent"
atlassian_email: ${{ secrets.ATLASSIAN_EMAIL }}
atlassian_token: ${{ secrets.ATLASSIAN_TOKEN }}
config_file: .rovodev/ci-config.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This will allow the Rovo Dev action to create PR.
Unfortunately GH Actions does not allow testing from a non-main branch. I've tested locally with
actand got all the way to the last step of invoking gh cli so I believe we should be good.Once merged, I'll test it with the test-pr-creation workflow.